From 637abce44f450fb19e48a13835125f5ceceefad4 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Sat, 3 Jun 2006 14:42:13 -0600 Subject: [PATCH] [IA64] fix debug=y build: update ASSERT(acktype) action->acktype is no longer defined here. Dereference desc->action->acktype to get to it. Signed-off-by: Aron Griffis --- xen/arch/ia64/xen/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/xen/irq.c b/xen/arch/ia64/xen/irq.c index 5218d0e364..294388043f 100644 --- a/xen/arch/ia64/xen/irq.c +++ b/xen/arch/ia64/xen/irq.c @@ -440,7 +440,7 @@ int pirq_guest_eoi(struct domain *d, int irq) if ( test_and_clear_bit(irq, &d->pirq_mask) && (--((irq_guest_action_t *)desc->action)->in_flight == 0) ) { - ASSERT(action->ack_type == ACKTYPE_UNMASK); + ASSERT(((irq_guest_action_t*)desc->action)->ack_type == ACKTYPE_UNMASK); desc->handler->end(irq); } spin_unlock_irq(&desc->lock); -- 2.30.2